home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000099_JDanSkinner@JDanSkinner.com_Fri Feb 6 12:32:17 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Path: newsmaster.cc.columbia.edu!panix!newsfeed.mathworks.com!news.maxwell.syr.edu!postnews1.google.com!not-for-mail
  2. From: JDanSkinner@JDanSkinner.com (Dan Skinner)
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: set command height
  5. Date: 5 Feb 2004 19:00:17 -0800
  6. Organization: http://groups.google.com
  7. Lines: 106
  8. Message-ID: <8ce22d01.0402051900.fd4341d@posting.google.com>
  9. References: <8ce22d01.0402041838.2fad2ccc@posting.google.com> <RekUb.178795$4F2.21648928@twister.nyc.rr.com>
  10. NNTP-Posting-Host: 24.159.192.106
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1076036417 14831 127.0.0.1 (6 Feb 2004 03:00:17 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: Fri, 6 Feb 2004 03:00:17 +0000 (UTC)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14801
  17.  
  18. Jeffrey Altman <jaltman2@nyc.rr.com> wrote in message news:<RekUb.178795$4F2.21648928@twister.nyc.rr.com>...
  19. Thanks Jeffrey;
  20. I think I found the commom denominator.
  21. Am/was using launch parameter --height:30 in the shortcut then
  22. changing the height of both command and terminal in the script to 43.
  23. When I change the launch value to --height:43 the problem goes away.
  24. Seems a little wierd, but my problem is solved.
  25.  
  26. Sample Script:
  27.  
  28.  
  29. set title SuSE SSH connection to Suse.jdanskinner.com
  30. set command color Blue White
  31. clear command
  32. set telopt authentication refused
  33. set telopt binary require accept
  34. set telopt encryption accepted accepted
  35. set telopt kermit accepted accepted
  36. set tcp sendbuf 8192
  37. set tcp recvbuf 8192
  38. set tcp reverse-dns-lookup auto
  39. set tcp dns-service-records off
  40. set term bytesize 8
  41. set term echo off
  42. set term wrap off
  43. set term apc off
  44. set term autodown on
  45. set term status on
  46. set key \269  \13
  47. set term newline off
  48. set dialer backspace \8
  49. set mouse activate on
  50. set exit on-disconnect on
  51. set file download-directory /tmp/download
  52. set file type binary
  53. set file collision overwrite
  54. set file incomplete discard
  55. set streaming auto
  56. set clear-channel off
  57. set file names literal
  58. set receive pathnames off
  59. set send pathnames off
  60. set file char cp437
  61. set protocol kermit
  62. set xfer char transparent
  63. set command quoting on
  64. set login prompt 
  65. set network tcp/ip
  66. if fail end 1 TCP/IP Failed
  67. echo Terminal linux console is set
  68. set term cursor full
  69. set command height 43
  70. take {C:\K95\SCRIPTS\linuxcons.ksc}
  71. set login password {=9>ek|>?:?}
  72. ssh suse /user:root 
  73.  
  74. ----------------------------------------------------
  75. ; linuxcons for Dans laptop
  76. echo linuxcons.ksc
  77.  
  78. set telnet terminal linux
  79. set term height 43
  80. set term width 80
  81. set gui window position 15 15
  82. set gui window resize scale
  83. set gui font lucida_console 10
  84. set term type linux
  85. set term color term  blue lightgray 
  86. set term color reverse lightgray blue 
  87. set term color status Magenta Black
  88. set term color help LightGray Cyan
  89. set term color selection Black Yellow
  90. set term color underline Blue white
  91. set term attribute underline off
  92. set term scrollback 512
  93. set term remote-char cp437 G1
  94. set term remote-char cp437 G2
  95. set command color blue lightgray 
  96. clear command-screen
  97. clear terminal-screen
  98. set printer /windows://localskin/mainprint
  99. set transfer mode manual
  100. lcd /tmp
  101. binary
  102. echo linuxcons.ksc exit
  103.  
  104.  
  105.  
  106. Regards...Dan.
  107.  
  108. > Please provide an example set of scripts that demonstrate the problem.
  109. > Dan Skinner wrote:
  110. > > I'm confused.  It seems to matter where I put the set command height
  111. > > command in my login scripts.
  112. > > If I stick it in the subscript where I configure the terminal frame
  113. > > size
  114. > > alt-X seems to forget the command height and re-connect will find the
  115. > > terminal height messsed up.  If the set command height is in the first
  116. > > few lines of the top level script the command frame height and
  117. > > terminal height will hold through an alt-X and re-connect.  Can
  118. > > someone shed some light on this?
  119. > > Oh, I'm using 43 line screens W95 2.1.3.
  120. > > Regards...Dan
  121.